
@charset "utf-8";

/* font links */
@import url('https://fonts.googleapis.com/css2?family=Agu+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

/* CSS Document */

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
:root {
	--primary: #00d9ff;
	--secondary: #ff00ea;
	--dark: #0a0a0f;
	--light: #ffffff;
	--glow: #00ffcc;
	--font-display: 'Orbitron', monospace;
	--font-heading: 'Space Grotesk', sans-serif;
	--font-body: 'Inter', sans-serif;
}

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
        }
        html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}
.page-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

        /* Animated background with hexagon pattern */
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, transparent 2%, rgba(255, 94, 0, 0.03) 2%, rgba(255, 94, 0, 0.03) 3%, transparent 3%),
                radial-gradient(circle at 75% 75%, transparent 2%, rgba(0, 178, 255, 0.03) 2%, rgba(0, 178, 255, 0.03) 3%, transparent 3%);
            background-size: 80px 80px;
            animation: grid-move 30s linear infinite;
            z-index: -2;
        }

        /* Animated shapes */
        .shapes-container {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
        }

        .shape-circle1 {
            width: 300px;
            height: 300px;
            background-image: url("group12.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 2px solid #FF5E00;
            border-radius: 50%;
            top: 10%;
            left: 10%;
            animation: float-rotate 20s ease-in-out infinite;
        }
        .shape-circle2 {
            width: 200px;
            height: 200px;
            background-image: url("group17.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 2px solid #FF5E00;
            border-radius: 50%;
            top: 10%;
            right: 10%;
            animation: float-rotate 20s ease-in-out infinite;
        }
        .shape-circle3 {
            width: 200px;
            height: 200px;
            background-image: url("group17.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 2px solid #FF5E00;
            border-radius: 50%;
            top: 30%;
            right: 50%;
            animation: float-rotate 20s ease-in-out infinite;
        }
        .shape-circle4 {
            width: 200px;
            height: 200px;
            background-image: url("group17.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 2px solid #FF5E00;
            border-radius: 50%;
            top: 25%;
            right: 30%;
            animation: float-rotate 20s ease-in-out infinite;
        }

        .shape-triangle {
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 173px solid rgba(0, 178, 255, 0.2);
            top: 60%;
            right: 15%;
            animation: float-rotate 25s ease-in-out infinite reverse;
        }

        .shape-square {
            width: 150px;
            height: 150px;
             background-image: url("group12.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 2px solid #00B2FF;
            transform: rotate(45deg);
            bottom: 20%;
            left: 20%;
            animation: float-rotate 22s ease-in-out infinite;
        }

        @keyframes float-rotate {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translateY(-10px) rotate(270deg) scale(1.05);
            }
        }

        /* Gradient overlay */
        .gradient-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(255, 94, 0, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(0, 178, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            z-index: -1;
            animation: gradient-shift 10s ease-in-out infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Floating particles */
        .particle {
            position: fixed;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .particle::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 2px;
            background: #FF5E00;
            box-shadow: 0 0 10px #FF5E00, 0 0 20px #FF5E00;
            animation: float-up 15s linear infinite;
        }

        @keyframes float-up {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }


        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 94, 0, 0.1);
        }

        nav.scrolled {
            padding: 15px 50px;
            background: rgba(10, 10, 10, 0.95);
            box-shadow: 0 5px 30px rgba(255, 94, 0, 0.2);
        }
        .head{
            width: 100%;
            display: inline-block;
            text-align: center;
            margin-top: -10px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px;
        }

        .logo-svg {
            width: 40px;
            height: 40px;
        }

        .logo-text {
            font-family: 'Orbitron', monospace;
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
        }
        .theClan {
            font-family: 'Orbitron', monospace;
            font-size: 34px;
            font-weight: 900;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
        }

         @media(max-width: 1000px) {
    .theClan {
      font-size: 25px;
    }
}
        #well{
            font-size: 10px;
            position: absolute;
            top: 80%;
            left: 10%;
        }

        @keyframes glow {
            0%, 100% { 
                filter: brightness(1);
                text-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
            }
            50% { 
                filter: brightness(1.5);
                text-shadow: 0 0 40px rgba(255, 94, 0, 0.8);
            }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 16px;
            font-family: 'Orbitron', monospace;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        .nav-links a.active {
            opacity: 1;
            color: #FF5E00;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            border-color: #FF5E00;
            box-shadow: inset 0 0 10px rgba(255, 94, 0, 0.5);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #FF5E00, #00B2FF);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 94, 0, 0.8);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: #FF5E00;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        

        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 80px 20px 20px;
        }
         
        .hero-content {
            text-align: center;
            max-width: 1200px;
            animation: fade-in-up 1s ease-out;
            z-index: 10;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        @media(max-width: 1000px) {
    .hero-content {
      min-height: 90vh;
      margin-bottom: 70px;
    }
    #slideimg{
       min-height: 110%;

  }
    .banner{
        height: 600px;
        margin-bottom: 120px;
  }
  }
   @media(max-width: 768px) {
    .hero-content {
      min-height: 70vh;
    }
    .banner{
        height: auto;
        margin-bottom: 10px;
  }
  #quote{
    font-size: 80px;
  }
  }

                /* slider images button */

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

 .buttons button {
    background-color: #0d47a1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.5em;
    transition: background 0.3s;
  }

 .buttons button:hover {
    background-color: #1565c0;
  }

        /* Text Rotator Styles */
        .text-rotator {
            position: relative;
            min-height: 100px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .text-set {
            position: absolute;
            width: 100%;
            opacity: 0;
            display: none;
        }

        .text-set.active {
            opacity: 1;
            display: block;
        }

        .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
            animation: charFlyIn 0.5s ease-out forwards;
        }

        @keyframes charFlyIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .char.out {
            animation: charFlyOut 0.3s ease-in forwards;
        }

        @keyframes charFlyOut {
            to {
                opacity: 0;
                transform: translateY(-30px) rotateX(90deg);
            }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        .subtitle.visible {
            animation: subtitleFade 0.8s ease-out 0.5s forwards;
        }

        @keyframes subtitleFade {
            to {
                opacity: 0.6;
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: 10vw
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
        }

        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch-text::before {
            animation: glitch-1 0.5s infinite;
            color: #FF5E00;
            z-index: -1;
            text-shadow: -2px 0 #FF5E00;
        }

        .glitch-text::after {
            animation: glitch-2 0.5s infinite;
            color: #00B2FF;
            z-index: -1;
            text-shadow: 2px 0 #00B2FF;
        }

        @keyframes glitch-1 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(33% 0 33% 0); transform: translate(-2px); }
            40% { clip-path: inset(66% 0 0 0); transform: translate(2px); }
            60% { clip-path: inset(0 0 66% 0); transform: translate(1px); }
            80% { clip-path: inset(25% 0 50% 0); transform: translate(-1px); }
        }

        @keyframes glitch-2 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(50% 0 25% 0); transform: translate(2px); }
            40% { clip-path: inset(0 0 75% 0); transform: translate(-2px); }
            60% { clip-path: inset(75% 0 0 0); transform: translate(-1px); }
            80% { clip-path: inset(40% 0 40% 0); transform: translate(1px); }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0.6;
            animation: fade-in 1s ease-out 0.5s both;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 0.6; }
        }

        .cta-container {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            z-index: 100;
                }
        

        .cta-button {
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }
   
        @media(max-width: 768px) {
     .cta-button{
      font-size: 0.5rem;
    }
  }


        .cta-primary {
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            color: white;
            animation: pulse 2s infinite;
            box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(255, 94, 0, 0.8);
            }
        }

        .cta-secondary {
            background: transparent;
            color: #FF5E00;
            border: 2px solid #FF5E00;
            box-shadow: inset 0 0 20px rgba(255, 94, 0, 0.1);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-secondary:hover {
            background: rgba(255, 94, 0, 0.1);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(255, 94, 0, 0.4), inset 0 0 30px rgba(255, 94, 0, 0.2);
            border-color: #ffffff;
        }
/* changing texts and images  */
        #slideimg{
    width: 100%;
    max-height:70vh;
    object-fit: fill;
    border-radius: 10px;
}
 .container{
    width: 95%;
    min-height: 70vh;
    margin-inline: auto;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
 .title {
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
  }

.message{
    width: 80%;
    margin: auto;
    margin-top: 70px;
    background:linear-gradient(135deg, rgba(255, 255, 255, 0.103), rgba(255, 255, 255, 0));
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.sliding_text{
    margin-inline:auto;
    text-align: center;
    background:linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    width: clamp(300px, 100%, 500px);
    height: 490px;
}
.sliding_text h1{
    font-family: "Chakra Petch", serif;
    color:rgb(255, 255, 255);
}

/* for the graduands pictures */
.graduands_pictures{
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    gap:20px;
    text-align: center;
    cursor: pointer;
    margin-left: 5%;
    width: 90%;
    outline: none;  
}
.graduands_pictures >*{
    flex: 1 1 15em;
}

.images_class{
    background-color: transparent;
    box-shadow: 5px 30px 56.1276px rgb(55 55 55 / 12% );
    border-radius: 10px;
    position: relative;
    
}


@media (max-width: 1000px) {

.container{
    display: block;
}
.sliding_text{
    margin-top: 20px;
}
}
/* all trials */
.message h1{
    color:#333 ;
    text-align: center;
    font-family:"Agu Display", serif ;
    font-size: 50px;
    font-weight: bolder;
    margin-bottom: 40px;
}
.message .message_paragraph{
    font-size: 15px;
    color:#333;
    text-align: justify;
    padding: 25px;
    padding-top: 0;
    line-height: 30px;
    font-family: "Chakra Petch", serif;
}
.images{
    width: 100%;
    height: 300px;
    border-radius: 10px;
    
}

.briefinfo{
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0;
    top: 0%;
    background:linear-gradient(135deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.171));
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 5px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    text-align: left;
    padding-top: 20px;
    margin-bottom: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease ;
        z-index: 2;
}
.briefinfo h2{
    font-size: 12px;
    text-align: center;
    margin-right: 5px;
    font-family: "Pacifico", serif;
    font-weight: 200;
    color: rgb(255, 255, 255);
    line-height: 15px;
    margin-bottom: 25px;
}
.briefinfo h3{
    text-align: center;
    color: #fff;
    font-weight: bolder;
    margin-bottom: 10px;
    font-size: 16px;
    
}
.briefinfo span{
    color: #00B2FF;
    font-weight: bolder;
    padding-right: 10px;
    text-align: center;
    display:block;
    font-size: 14px;
}
.briefinfo p{
    margin-bottom: 8px;
    color: #fff;
    font-weight: bolder;
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
    
    
}
.images_class:hover .briefinfo {
    opacity: 1;
    pointer-events: auto;
  }

  @media (max-width: 768px) {
    .images_class {
height: 400px;
 border: 1px solid rgba(27, 26, 26, 0.76);
  box-shadow: 0 0 10px rgba(12, 11, 11, 0.76),
              0 0 20px rgba(39, 37, 37, 0.76),
              0 0 30px rgba(255, 255, 255, 0.76);
  transition: box-shadow 0.3s ease;
    }
    
  .images {
    height: 350px; 
    width:80%;
  }
.briefinfo{
    height: 350px;
  }
}
  .briefinfo.active {
    opacity: 1 !important;
    pointer-events: auto;
  }
  
.briefinfo:hover{
    opacity: 1;
    
}
.briefinfo.active {
    opacity: 1;
    pointer-events: auto;
    
  }
  
 
 

.briefinfo button:hover{
    background: transparent;
    color: #222;
    transform: scale(1.2);
    
}
  .tour.hidden {
    display: none;
  }
#quote{
    text-align: left;
    font-family: "Chakra Petch", serif;
    color: #ffffff;
    font-weight: bolder;
    margin-bottom: 22px;
    font-size: 14px;
}

.seemore{
    visibility: hidden;
}
.seemore:hover{
    color: rgb(23, 84, 114);
    background: white;
    box-shadow: none;
}

#transition{
    width: 100%;
    height: 70%;
    background:transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*For the about page*/
.content{
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin-inline: auto;
    width: 100%;
    margin-top: 70px;
    background-color: #4ad0ee22;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    transition: all ease 0.5s;

}
.content:hover{
    box-shadow: 5px 5px 20px 1px #4acfee;
}
.moreinfo{
    width: 100%;
}
.aboutimage{
    margin-left: 15px;
}
.aboutimage img{
    border-radius:50%;
    margin-top: 20px;
    transition: all ease .7s ;
}
.aboutimage img:hover{
    transform: scale(1.07);
}
.abouttext{
    margin-left: 15px;
    border-radius: 5px;
    max-width:60%;
    margin-top: 20px;
}
.abouttext p{
    border-bottom: 1px solid wheat;
    font-size: 13px;
    padding-inline: 10px;
    margin: 10px;
    margin-left: 0;
    color: white;
    padding-left: 0;
    text-align: justify;
    text-decoration: none;
    text-shadow: none;
}
.abouttext span{
    color:#4acfee;
    margin-right: 14px;
    font-size: 14px;
    font-weight: bolder;
}
.father{
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
}
.father h1{
    font-family: "Pacifico", serif;
    width: 100%;
    background: linear-gradient(to right,#4acfee, #53f8c9, #6070fd, #5bbdff, #4acfee);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    animation: animate-gradient 2.5s linear infinite;
    margin-top: 25px;
}
@keyframes animate_gradient{
    to{
        background-position: 200%;
    }
} 

 @media (max-width: 1000px) {

.container{
    display: block;
}
.sliding_text{
    margin-top: 20px;
    height: auto;
}
}
 .tour{
    padding: 10px;
    margin: 2px auto;
    font-family: Chakra Petch, serif;
    font-weight: bolder;
    color: #fff;
    outline: hidden;
    border: none ;
    background: rgb(23, 84, 114);
    border-radius: 5px;
 }
 .tour:hover{
   box-shadow: 0 0 10px rgb(238, 223, 7);
   transition: all ease 0.4s;
   background: white;
   color: rgb(23, 84, 114);
 }
 

 .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
  }
  
  .grid-item {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .grid-item:hover {
    transform: translateY(-5px);
  }
  
  .image-box {
    background-color: #eef6fa;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .text-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .text-box h3 {
    margin: 10px 0 5px;
    color: #175472;
  }
  
  .text-box p {
    font-size: 14px;
    color: #555;
  }
  
  /* Tablets & laptops: 2 columns, 4 rows */
  @media (max-width: 1024px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Phones: 1 column, 8 rows */
  @media (max-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  }
/* trials end here */

        /* Features Section with Tabs */
      .features {
            padding-top: 50px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

    .features-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            align-items: center;
            margin-top: -60px;
        }
        .feature-content {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 94, 0, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
            height: 300px;
        }
        /* About Section */
    .lines{
        width: 100%;
        height: 2px;
        background: #FF5E00;
        margin-bottom: 5px;
        animation: animate-lines 2.5s linear infinite;
    }

   .goodwill-messages{
        width: 90%;
        margin-top: 50px;
        margin-inline: auto;
        text-align: center;
    }
    .goodwill-messages h1{
            font-family: 'Orbitron', monospace;
            font-size: clamp(1.5ch, 3rem, 2.5ch);
            font-weight: 900;
            text-align: center;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }
    .goodwill-messages p{
font-family: 'Times New Roman', Times, serif;
line-height: 3.5ch;
    }
    #shared-moments{
        font-style: italic;
        color: rgb(255, 60, 0);
    }

    .celebrating-image{
        width:clamp(200px, 90%, 600px);
    }
        .about-visual {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-graphic {
            width: 300px;
            height: 300px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .about-graphic::before,
        .about-graphic::after {
            content: '';
            position: absolute;
            border: 2px solid #FF5E00;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
        }

        .about-graphic::before {
            width: 100%;
            height: 100%;
            animation: rotate 20s linear infinite;
        }

        .about-graphic::after {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-color: #00B2FF;
            animation: rotate 15s linear infinite reverse;
            box-shadow: 0 0 30px rgba(0, 178, 255, 0.5);
        }

        /* Alternative graphic for second row */
        .about-graphic-alt {
            width: 300px;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .hexagon {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            opacity: 0.3;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .hexagon:nth-child(1) {
            width: 150px;
            height: 150px;
            animation: hexagon-rotate 8s linear infinite;
        }

        .hexagon:nth-child(2) {
            width: 100px;
            height: 100px;
            animation: hexagon-rotate 12s linear infinite reverse;
            opacity: 0.5;
        }

        .hexagon:nth-child(3) {
            width: 200px;
            height: 200px;
            animation: hexagon-rotate 15s linear infinite;
            opacity: 0.2;
        }

        @keyframes hexagon-rotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Contact Section */
    
        .contact-info {
            padding: 40px;
        }

        .contact-info h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #FF5E00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .info-item {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #FF5E00, #00B2FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .info-details h4 {
            color: #FF5E00;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .info-details p {
            opacity: 0.8;
        }

      
        @keyframes scan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(255, 94, 0, 0.2);
            padding: 40px 20px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #FF5E00;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: #00B2FF;
            text-shadow: 0 0 10px currentColor;
        }

        .copyright {
            opacity: 0.6;
            font-size: 0.9rem;
        }

        .copyright a {
            color: #FF5E00;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .copyright a:hover {
            color: #00B2FF;
            text-shadow: 0 0 10px currentColor;
        }

        /* Scanlines effect */
        .scanlines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(
                transparent 50%,
                rgba(255, 94, 0, 0.01) 50%
            );
            background-size: 100% 4px;
            animation: scanlines 8s linear infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 0 0 30px rgba(255, 94, 0, 0.5);
            }
            50% { 
                transform: translateY(-10px);
                box-shadow: 0 10px 40px rgba(255, 94, 0, 0.7);
            }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-content {
                padding: 0 20px;
            }

            .glitch-text {
                font-size: 5vw;
            }

            .text-rotator {
                min-height: 150px;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .cta-container {
                
                flex-direction: column;
                align-items: center;
            }

            .cta-button {
                width: 80vw;
                max-width: 300px;
                font-size: 23px;
                text-align: center;
            }

            .features-container {
                grid-template-columns: 1fr;
            }

            .feature-tabs {
                display: block;
                padding: 20px;
                max-width: 100%;
            }

            .tab-item {
                width: 100%;
                margin-bottom: 10px;
            }

            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .about-graphic {
                width: 200px;
                height: 200px;
            }

            .shape-circle,
            .shape-triangle,
            .shape-square {
                transform: scale(0.6);
            }
        }
    /* for the tour buttton */
         .tour {
    display: inline-block;
    background: linear-gradient(45deg, #FF5E00, #00B2FF);
    animation: scaleup 2s infinite ;
  }

   /* slider below */
   .slider-container {
    perspective: 1000px;
    width: 80%;
    max-width: 900px;
    height: 60vh;
    position: relative;
    overflow: hidden;
  }

.slider {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
  }

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 80%;
    transform-origin: center;
    transform: translate(-50%, -50%) rotateY(0deg) translateZ(0);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-radius: 10px;
    overflow: hidden;
  }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

.buttons {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
  }

.buttons button {
    background: rgba(255,255,255,0.7);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 50%;
    transition: background 0.3s;
  }

.buttons button:hover {
    background: rgba(255,255,255,1);
  }


  /* About Section */
  .container2 {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--light);
	text-align: center;
	margin-bottom: 50px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--secondary));
}
  .content-section {
	position: relative;
	min-height: 100vh;
	padding: 100px 5%;
	background: var(--dark);
	z-index: 20;
	overflow: hidden;
}

.section-gradient {
	background: linear-gradient(180deg, var(--dark) 0%, #1a1a2e 50%, var(--dark) 100%);
}
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
	margin: 50px 0;
}

.about-text {
	color: rgba(255, 255, 255, 0.9);
    height: 100%;
}
.hero-title {
	font-family: var(--font-display);
	font-size: clamp(1rem, 8vw, 2.5rem);
	font-weight: 900;
	width: 90vw;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 20px;
	animation: glow-text 2s ease-in-out infinite alternate;
	text-transform: uppercase;
	letter-spacing: 0.1em;
    padding-left: 20px;
}

@keyframes glow-text {
	from {
		filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.5));
	}

	to {
		filter: drop-shadow(0 0 30px rgba(255, 0, 234, 0.8));
	}
}

.hero-subtitle {
	font-family: var(--font-heading);
	font-size: clamp(1rem, 2vw, 1.5rem);
	font-weight: 300;
	opacity: 0.8;
	margin-bottom: 40px;
	letter-spacing: 0.3em;
	line-height: 2em;
	text-transform: uppercase;
    padding: 20px;
}

.about-text h3 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--primary), var(--glow));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.about-visual {
	position: relative;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.orbit-container {
	position: absolute;
	width: 100%;
	height: 100%;
	max-width: 400px;
	max-height: 400px;
	animation: rotate 20s linear infinite;
}

.orbit {
	position: absolute;
	border: 2px solid rgba(0, 217, 255, 0.2);
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.orbit-1 {
	width: 200px;
	height: 200px;
	animation: pulse 3s ease-in-out infinite;
}

.orbit-2 {
	width: 300px;
	height: 300px;
	animation: pulse 3s ease-in-out infinite 1s;
}

.orbit-3 {
	width: 400px;
	height: 400px;
	animation: pulse 3s ease-in-out infinite 2s;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}
}

.orbit-dot {
	position: absolute;
	width: 20px;
	height: 20px;
	background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
	border-radius: 50%;
	box-shadow: 0 0 20px var(--primary);
}

.dot-1 {
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.dot-2 {
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}

.dot-3 {
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .about-content {
		grid-template-columns: 1fr;
		gap: 40px;
		margin: 40px 0;
	}
.hero-title{
    font-size: 28px;
    padding-left: 20px;
}

    .hero-subtitle {
        line-height: 3rem;
	}   

	.about-text {
		order: 1;
	}

	.about-text h3 {
		font-size: 1.6rem;
		margin-bottom: 18px;
	}

	.about-text p {
		font-size: 1rem;
		line-height: 1.8;
		margin-bottom: 20px;
	}

	.about-visual {
		order: 2;
		height: 350px;
	}

	.orbit-container {
		max-width: 350px;
		max-height: 350px;
	}

	.orbit-1 {
		width: 150px;
		height: 150px;
	}

	.orbit-2 {
		width: 225px;
		height: 225px;
	}

	.orbit-3 {
		width: 300px;
		height: 300px;
	}
    }

@media (max-width: 480px) {
	#about {
		padding: 60px 5%;
	}

	.about-content {
		gap: 30px;
		margin: 30px 0;
	}

	.about-text h3 {
		font-size: 1.4rem;
		margin-bottom: 15px;
	}

	.about-text p {
		font-size: 0.95rem;
		line-height: 1.7;
		margin-bottom: 18px;
	}

	.about-visual {
		height: 280px;
	}

	.orbit-container {
		max-width: 280px;
		max-height: 280px;
	}

	.orbit-1 {
		width: 120px;
		height: 120px;
	}

	.orbit-2 {
		width: 180px;
		height: 180px;
	}

	.orbit-3 {
		width: 240px;
		height: 240px;
	}

	.orbit-dot {
		width: 15px;
		height: 15px;
	}

	.dot-1 {
		top: -7px;
	}

	.dot-2 {
		right: -7px;
	}

	.dot-3 {
		bottom: -7px;
	}
}

  /* Graduand items */
  .graduand {
    background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
  }

  .graduand:hover {
    background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
  }

  .graduand p {
    margin: 0;
    font-size: 1.2em;
  }

/*modal info*/

.modal_logo1{
height: 55px; 
width: 60px; 
float: left;
}
.modal_logo2{
height: 60px; 
width: 90px; 
float: left;
}
@media (max-width: 500px) {
    .modal_logo1{
height: 28px; 
width: 30px; 
}
.modal_logo2{
height: 30px; 
width: 55px; 

}
  }
 /* Modal styles */
  .modal {
    position: fixed;
    z-index: 999;
    top: 0%; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    padding: 30px;
  }

 .modal-content {
  background: linear-gradient(135deg, #353a39, #111);
  padding: 40px;
  border-radius: 20px;
  max-width: 1200px;
  width: 100%;
  height: 80vh; /* fixed height for modal */
  display: flex;
  flex-direction: row; /* default for large screens */
  align-items: flex-start;
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  overflow-y: auto; /* enable vertical scrollbar */
}

/* Modal container */
#infoModal {
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;
  position: fixed; /* fixed positioning for proper centering */
  top: 50%;
  left: 50%;
  max-width: 90%; /* prevent it from being too wide on mobile */
  width: 100%;
  max-height: 90vh; /* limit height to viewport height */
  overflow-y: auto; /* allow scrolling inside modal if content is too large */
  padding: 20px;
  border-radius: 10px;
  background: #07ffea;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 1001;
}

/* Show modal */
/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
  #infoModal {
    padding: 15px;
  }
  /* Adjust font size or image size if needed */
}

/* Show modal: visible with animation */
#infoModal.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* For smaller screens, stack vertically */
@media (max-width: 768px) {
  .modal-content {
    height: auto; /* height adjusts to content */
  }

  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 60px;
    right: 50px;
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
  }

  .close-btn:hover {
    color: #f00;
  }

  /* Image styles - bigger size */
  #graduateImage {
    flex-shrink: 0;
    width: 450px; /* keep it large enough */
    height: 600px;
    border-radius: 12px;
    object-fit: cover; /* show full image */
    border: 4px solid #4facfe;
    margin-right: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
  

  /* Info container */
  #infoContainer {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  /* Heading inside modal */
  #modalHeading {
    margin-bottom: 20px;
     font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
    font-size: 2em;
    color: #00f2fe;
    text-align: center;
  }

  /* Info text with typing effect, smaller font */
  #modalText {
    font-family: 'Poppins', sans-serif;
    font-size: 1em; /* smaller font size */
    color: #00f2fe;
    white-space: pre-wrap;
    border-left: 4px solid #00f2fe;
    padding-left: 8px;
    flex: 1;
  }
  /* media query for smaller screens */
@media (max-width: 768px) {
  .modal-content {
    flex-direction: column; /* stack vertically */
    height: auto; /* adjust height */
    top: 30%; /* lower top position */
  }

  #graduateImage {
    width: 100%; /* full width on small screens */
    height: auto; /* maintain aspect ratio */
    margin: 0 0 20px 0; /* margin bottom for spacing */
  }

  #infoContainer {
    width: 100%; /* full width */
  }
}
#additionalinfomation{
    border-bottom: 1px solid #00f2fe; 
    padding: 2px;
    margin-top: 0px;
     font-size: 1rem; /* Base font size, can be adjusted */
  line-height: calc(1.2rem + 0.5vw); /* Responsive line height */
}
#questions{
   color: white;
}

 .logocontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logosImg {
    display: flex;
    margin-bottom: 10px;
  }

  .text {
    font-family: Arial, sans-serif;
  }
  .university {
    font-weight: bold;
    font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
    font-size: 2em;
  }
  .department {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: italic;
  }

  @media (max-width: 768px) {
 .university{
  font-size: 1.5em;
  }
  #modalHeading{
    font-size: 1.5em;
  }
  }
  @media (max-width: 400px) {
 .university{
  font-size: 0.8em;
  }
  .department {
    font-size:0.5em;
  }


  #modalHeading{
    font-size: 1.2em;
  }
  }
